home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-in_the_mag-
/
reader_requests
/
dice_v3.15
/
doc
/
c_quickref.doc
< prev
next >
Wrap
Text File
|
1999-01-26
|
2KB
|
24 lines
dice/operater precedence dice/operater precedence
dice/precedence dice/precedence
dice/c_quickref dice/c_quickref
-----------------------------------------------------------------
() {} -> . Left-to-right
! ~ ++ -- + - * & (type) sizeof() Right-to-Left *
* / % Left-to-right
+ - Left-to-right
<< >> Left-to-right
< <= > >= Left-to-right
== != Left-to-right
& Left-to-right
^ Left-to-right
| Left-to-right
&& Left-to-right
|| Left-to-right
?: Left-to-right
= += -= *= /= %= &= ^= |= <<= >>= Right-to-left **
, Left-to-right
-----------------------------------------------------------------
* The higher precidence +, - and * are unary operators
** Warning: = is a low priority operator; parenthesis often required!